home *** CD-ROM | disk | FTP | other *** search
/ MacTech 1 to 12 / MacTech-vol-1-12.toast / Source / MacTech® Magazine / Volume 09 - 1993 / 09.02 Feb 93 / Screen I⁄O Classes / B Classes / B.h / BBitMapDoc.h next >
Encoding:
C/C++ Source or Header  |  1992-07-12  |  514 b   |  24 lines  |  [TEXT/KAHL]

  1. /***********************************************************
  2.  * BBitMapDoc.h
  3.  *
  4.  * Class for rapid dumping of a bitmap to a window.
  5.  *
  6.  * © copyright 1992, KSS Scientific Consultants
  7.  *
  8.  ***********************************************************/
  9.  
  10. #pragma once
  11.  
  12. #include "BDisplayOutput.h"
  13.  
  14. class BBitMapDoc : public BDisplayOutput
  15. {
  16.  
  17. public:
  18.     void            IBBitMapDoc(CApplication *aSupervisor, Boolean printable);
  19.     virtual void    OutputMap(BitMap *theBitMap);
  20.  
  21. protected:
  22.     virtual void    BuildWindow (Handle theData);
  23. };
  24.